home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 15668 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.2 KB  |  34 lines

  1. Path: news.compuserve.com!newsmaster
  2. From: Philippe Verdy <100105.3120@compuserve.com>
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: Compiler table limit exceeded!!!?
  5. Date: 7 Apr 1996 22:26:52 GMT
  6. Organization: CompuServe Incorporated
  7. Message-ID: <4k9ffc$fl9@arl-news-svc-5.compuserve.com>
  8. NNTP-Posting-Host: ad04-110.compuserve.com
  9.  
  10. ettienne@agate.net (Steve Nutt) s'Θcrit :
  11. > mikolaj@concentric.com wrote:
  12. > >When I try to compile a program 4000 lines, with my Borland Turbo C++ 3.0, I get
  13. > > an error message saying: compiler table limit exceeded. What should I do. I 
  14. > >have the program broken up with functions but that doesn't help. Please help me!!!
  15. > >Thank you. Mike.
  16. > Try breaking the file up into two or more files.
  17. > Steve
  18. The compiler table limit does not depend on the size of the
  19. file being compiled, but on the global number of symbols
  20. and/or macros included in each module compiled.
  21. May be you can reduce this volume by including just the
  22. necessary headers in each module (and not using a common
  23. global header which includes all).
  24. Check also your memory options (like the size of the swap
  25. file).
  26. Try also to compile your application from command-line
  27. (not under the IDE), because it will free up valuable
  28. extended memory.
  29.